home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 1999-08-24 | 1.9 KB | 61 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0" "TYPE"="1" "COUNT"="5" "UIPATH"="Appearance\Desktop\Tool Tips" "NAME"="Tool Tips #2" "VERSION"="2.00" "LANGUAGE"="VBScript" "TEXT 1"="Recycle Bin" "TEXT 2"="Internet Explorer" "TEXT 3"="Outlook 2000" "TEXT 4"="Briefcase" "TEXT 5"="Control Panel" "DESCRIPTION 1"="If you have ActiveDesktop or Windows 2000 installed, a small yellow window (aka Tool Tip) for these items will appear on the desktop if you pass them with your mouse." "DESCRIPTION 2"="You can change these tips to anything you want." "AUTHOR"="Xteq Systems" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com." '****************************************************************** '*** !!COPY!! ONLY EDIT LINES BELOW! **** '****************************************************************** sVals=Array("{645FF040-5081-101B-9F08-00AA002F954E}","{3DC7A020-0ACD-11CF-A9BB-00AA004AE837}","{00020D75-0000-0000-C000-000000000046}","{85BBD920-42A0-1069-A2E4-08002B30309D}","{21EC2020-3AEA-1069-A2DD-08002B30309D}") '****************************************************************** '*** Keep an eye on the order (must be the same as "TEXT x") ! **** '****************************************************************** sP="HKLM\Software\Classes\CLSID\" sV="InfoTip" Sub Plugin_Initialize for i=0 to UBound(sVals) Call ReadIt(i+1,sVals(i)) next End Sub Sub ReadIt(UI,VAL) s=RegReadValue(sp & VAL & "\" & sV) Call SetUIElement(UI,s) End Sub Sub Plugin_CheckData(ElementIndex) End Sub Sub Plugin_Apply(ElementIndex,ElementSubIndex) for i=0 to UBound(sVals) Call WriteIt(i+1,sVals(i)) next End Sub Sub WriteIt(UI,VAL) s=GetUIElement(UI) Call RegWriteValue(sp & VAL & "\" & sV,s,1) End Sub Sub Plugin_Terminate End Sub